projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
507f26d
)
* src/coding.c (code_convert_string): Fix type mismatches.
author
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 5 Apr 2020 17:45:09 +0000
(10:45 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sun, 5 Apr 2020 17:45:44 +0000
(10:45 -0700)
src/coding.c
patch
|
blob
|
history
diff --git
a/src/coding.c
b/src/coding.c
index 97a6eb949a8523ced03bbaf30ebf4ab7b9432c8a..49c1e625d57b255ec8014f13582ee421fe984ed3 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-9524,8
+9524,8
@@
code_convert_string (Lisp_Object string, Lisp_Object coding_system,
return (nocopy
? string
: (encodep
- ? make_unibyte_string (SDATA (string), bytes)
- : make_multibyte_string (SDATA (string), bytes, bytes)));
+ ? make_unibyte_string (S
S
DATA (string), bytes)
+ : make_multibyte_string (S
S
DATA (string), bytes, bytes)));
}
else if (BUFFERP (dst_object))
{